home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / misc / samples2 / parse.bas < prev    next >
BASIC Source File  |  1995-02-09  |  695b  |  25 lines

  1. 'Create a data type to hold each part of the record
  2. 'These can only be defined i a module, not a form
  3. Type RecordData
  4.     LastName As String
  5.     FirstName As String
  6.     Phone As String
  7.     Info As String
  8. End Type
  9.  
  10. 'Dimension an array to hold each record
  11. 'read from the data file.
  12. 'You might prefer to use a dynamic area, rather
  13. 'than explicitly stating the size of the array.
  14. Global RecordItem(10) As RecordData
  15.  
  16. 'Declare a variable to hold the data file's name
  17. Global FileName As String
  18.  
  19. 'Declare a variable to indicate a carriage return/line feed
  20. Global CRLF As String
  21.  
  22. 'By dimensioning variables here, they are available to all
  23. 'procedures within the entire program.
  24.  
  25.